home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
unix
/
textmstr.shr
/
tm.hqx
/
Source Code ƒ
/
TextMaster Code
/
tm.h
< prev
Wrap
Text File
|
1991-05-09
|
873b
|
19 lines
/***************************************************************************
** **
** Special defines for MACIFY **
** **
***************************************************************************/
/* Defines for the charcters we'll be converting */
#define UNIX_EOL 0x0a /* UNIX end-of-line character */
#define MAC_EOL '\n' /* Mac end-of-line character */
/* Define for bell character (to be used when file is done) */
#define BELL 0x07 /* bell character (Ctrl-G) */
/* Defines for what functions we'll be doing */
#define UNIX_TO_MAC 1 /* UNIX -> Macintosh xfers */
#define MAC_TO_UNIX 2 /* Mac -> UNIX xfers */
/* That's it! */